home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue70 / DBEX / Listing10.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-04-30  |  170 b   |  7 lines

  1. procedure TForm1.SQLMonitor1Trace(Sender: TObject;
  2. CBInfo: pSQLTRACEDesc; var LogTrace: Boolean);
  3. begin
  4.   Memo1.Lines.Add(CBInfo.pszTrace);
  5.   LogTrace:=False;
  6. end;
  7.